home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00110.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  387 b   |  28 lines

  1. property pTimer, pMaxTime
  2. global gDemoVersion
  3.  
  4. on beginSprite
  5.   pTimer = nowTicks()
  6.   if gDemoVersion then
  7.     pMaxTime = seconds(10)
  8.   else
  9.     pMaxTime = seconds(3)
  10.   end if
  11. end
  12.  
  13. on exitFrame
  14.   if ticksSince(pTimer) < pMaxTime then
  15.     if gDemoVersion or not (the mouseDown) then
  16.       go(the frame)
  17.     end if
  18.   end if
  19. end
  20.  
  21. on keyDown
  22.   go(the frame + 1)
  23. end
  24.  
  25. on idle
  26.   nothing()
  27. end
  28.